home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / dpmigcc5.zip / RSX / SOURCE / FPU.H < prev    next >
C/C++ Source or Header  |  1994-05-27  |  371b  |  18 lines

  1. #ifndef _RSX_FPU_H
  2. #define _RSX_FPU_H
  3.  
  4. #define MATH_NEW    0
  5. #define MATH_USED    1
  6.  
  7. #define NOT_TRACED    0
  8. #define PTRACED     1
  9.  
  10. int    npx_installed ( void );
  11. DWORD    emu_init ( void );
  12. void    emu_switch ( int math_used_flag, int debug_flag );
  13. void    do_fninit( void );
  14. void    do_frstor( union i387_union * );
  15. void    do_fnsave( union i387_union * );
  16.  
  17. #endif /* _RSX_FPU_H */
  18.